home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 2
/
Merciful - Disc 2.iso
/
software
/
d
/
databasev3.1reg.lha
/
db3.1
/
Examples
/
ARexxDemos
/
timefield.db
< prev
next >
Wrap
Text File
|
1994-11-20
|
281b
|
12 lines
/* Rexxprogram for db to convert a field to a "time field".
* By Anders Callertun 1994
*/
options results
GETFIELD
time = result
if pos(':',time)=0 & length(time)<5 then do
if length(time)<3 then time = right(time,3,'0')
PUTFIELD left(time,length(time)-2)':'right(time,2)
end